home *** CD-ROM | disk | FTP | other *** search
/ PCMania 10 / Pcmania_Ep2_10_CD-01.iso / ARTICULOS / pc_practico / visual_basic / Ejemplos / Asistente de empaquetado y distribucion / Programa.frm (.txt) next >
Encoding:
Visual Basic Form  |  2000-07-13  |  1.5 KB  |  52 lines

  1. VERSION 5.00
  2. Begin VB.Form Programa 
  3.    Caption         =   "Programa"
  4.    ClientHeight    =   1665
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   3210
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   1665
  10.    ScaleWidth      =   3210
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton Salir 
  13.       Caption         =   "Salir"
  14.       Height          =   495
  15.       Left            =   960
  16.       TabIndex        =   2
  17.       Top             =   960
  18.       Width           =   1215
  19.    End
  20.    Begin VB.CommandButton Command2 
  21.       Caption         =   "Desinstalar"
  22.       Height          =   495
  23.       Left            =   1680
  24.       TabIndex        =   1
  25.       Top             =   240
  26.       Width           =   1215
  27.    End
  28.    Begin VB.CommandButton Command1 
  29.       Caption         =   "Acerca"
  30.       Height          =   495
  31.       Left            =   240
  32.       TabIndex        =   0
  33.       Top             =   240
  34.       Width           =   1215
  35.    End
  36. Attribute VB_Name = "Programa"
  37. Attribute VB_GlobalNameSpace = False
  38. Attribute VB_Creatable = False
  39. Attribute VB_PredeclaredId = True
  40. Attribute VB_Exposed = False
  41. Private Sub Command1_Click()
  42.     MsgBox ("Este programa fu
  43.  empaquetado con el ""Asistente de empaquetado y distribuci
  44. n"" de Visual Basic.")
  45. End Sub
  46. Private Sub Command2_Click()
  47.     MsgBox ("Puedes desinstalar el programa desde el cuadro ""Agregar y quitar programas"" del Panel de control.")
  48. End Sub
  49. Private Sub Salir_Click()
  50.     Unload Programa
  51. End Sub
  52.